home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / dvx / demos / xeyes / makefile < prev    next >
Encoding:
Makefile  |  1993-07-15  |  383 b   |  23 lines

  1.  
  2. HOME=C:\dvx
  3.  
  4. CFLAGS= -O -c -DMSDOS -DSHAPE
  5.  
  6. .c.o:
  7.     gcc $(CFLAGS) $<
  8.  
  9. O = xeyes.o\
  10.     eyes.o\
  11.     transfor.o
  12.  
  13. L = -lxt -lxmu -lxext -lx -lsys -lm
  14.  
  15. xeyes.exe : $(O)
  16.     gcc -o xeyes $(O) $(L)
  17.     strip xeyes
  18.     aout2exe xeyes
  19.     del xeyes
  20.     copy xeyes.ad $(HOME)\app-defa\xeyes.res
  21.     rem If $(HOME) is not the location of DESQview/X you will have edit this
  22.     rem makefile.
  23.